home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 1.iso / ARGONET / PD / PROGRAMMING / LCLINT-D.SPK / lclint / guide / sample.c < prev    next >
Encoding:
Text File  |  1996-08-26  |  155 b   |  13 lines

  1. typedef /*@abstract@*/ char *mstring;
  2.  
  3. int faucet (void)
  4. {
  5.   int *x = (int *) malloc (sizeof (int) * 24);
  6.  
  7.   /*
  8.   ** silly program ...
  9.   */
  10.  
  11.   return 3;
  12. }
  13.